From: Chong Yidong Date: Sat, 4 Jun 2011 23:00:29 +0000 (-0400) Subject: * lisp/repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696). X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~17^2~66 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8474cc23d253c56b863b0fc773a50b3d9d6e7591;p=emacs.git * lisp/repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d9bfedf757b..eb56f4aa6fe 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-06-04 Chong Yidong + + * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696). + 2011-06-04 Juanma Barranquero * loadhist.el (unload-feature-special-hooks): diff --git a/lisp/repeat.el b/lisp/repeat.el index ab0c42a0dde..a25b68d6220 100644 --- a/lisp/repeat.el +++ b/lisp/repeat.el @@ -124,7 +124,9 @@ if `repeat' is bound to C-x z, typing C-x z z z repeats the previous command only occurs if the final character by which `repeat' was invoked is a member of that sequence. If this variable is nil, no re-execution occurs." :group 'convenience - :type 'boolean) + :type '(choice (const :tag "Repeat for all keys" t) + (const :tag "Don't repeat" nil) + (sexp :tag "Repeat for specific keys"))) ;;;;; ****************** HACKS TO THE REST OF EMACS ******************* ;;;;;